home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1988 / 05 / spmtpl < prev    next >
Text File  |  1988-08-18  |  601b  |  27 lines

  1. # SPMtpl - Presentation Manager small memory model template.
  2. # Written by Bill Hall, Olivetti ATC.
  3. #
  4.  
  5. # no debug compile macro
  6. cp=cl -d -c -W3 -AS -G2sw -Ox -Zpe
  7.  
  8. # libraries
  9. LIBS=os2 slibcp libh /NOD
  10.  
  11. # inference rule for resources
  12. .rc.res :
  13.     rc -r $*.rc
  14.  
  15. # Dependencies
  16. spmtpl.res : spmtpl.rc spmtpl.h
  17.  
  18. spmtpl.obj : spmtpl.c spmtpl.h
  19.     $(cp) spmtpl.c
  20.  
  21. spmtplnt.obj : spmtplnt.c spmtpl.h
  22.     $(cp) -NT _INIT spmtplnt.c
  23.  
  24. spmtpl.exe : spmtpl.def spmtpl.res spmtpl.obj spmtplnt.obj
  25.     link spmtpl spmtplnt,spmtpl/align:16,spmtpl/map,$(LIBS),spmtpl.def
  26.     rc spmtpl.res
  27.